MindFusion.UI for WebForms Programmer's Guide

XmlPersistContext.WriteFloatArray Method

See Also
 





Writes the specified array.

Namespace: MindFusion.UI.Web
Assembly: MindFusion.UI.Web

 Syntax

C#  Copy Code

public XmlElement WriteFloatArray (
    float[] array,
    string elementName,
    string subElementName,
    XmlElement parentElement
)

Visual Basic  Copy Code

Public Function WriteFloatArray( _
    array() As Single, _
    elementName As String, _
    subElementName As String, _
    parentElement As XmlElement _
) As XmlElement

 Parameters

array

Type: Single<>
The float[] value to write.

elementName

Type: String
A string specifying the name of the element.

subElementName

Type: String
A string specifying the name of the sub-element.

parentElement

Type: XmlElement
The parent XML element.

 Return Value

Type: XmlElement
The created XmlElement

 See Also